home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Applications / nanoInstall 1.0 / source / standardputfile.h < prev    next >
C/C++ Source or Header  |  1996-07-05  |  664b  |  26 lines

  1. #pragma once
  2.  
  3. #include "standardfile_.h"
  4. //
  5. // standardputfile is a base class to interface to CustomPutFile
  6. //
  7. // Note for CodeWarriors: if your compiler complains that it can not
  8. // use a struct as a base class for standardputfile you probably are using
  9. // a precompiled header file generated with the C compiler with this C++
  10. // code. You should recompile them with the C++ compiler, and all should
  11. // be fine.
  12. //
  13. class standardputfile : public standardfile
  14. {
  15.     public:
  16.         standardputfile( ConstStr255Param prompt, short dlogID = sfPutDialogID);
  17.  
  18.         ~standardputfile();
  19.  
  20.         Boolean doIt( ConstStr255Param defaultName);
  21.  
  22.     private:
  23.  
  24.         ConstStr255Param the_prompt;
  25. };
  26.